home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000254_news@columbia.edu_Mon Oct 30 06:14:20 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22952
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 31 Oct 1995 06:05:34 -0500
  3. Received: by apakabar.cc.columbia.edu id AA22770
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 31 Oct 1995 06:05:33 -0500
  5. Path: news.columbia.edu!panix!ddsw1!news.mcs.net!van-bc!io.org!chi-news.cic.net!newsfeed.internetmci.com!news.mid.net!news.creighton.edu!bluejay.creighton.edu!honge
  6. From: Psychos 'R Us <honge@creighton.edu>
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Maximum transfer speed
  9. Date: Mon, 30 Oct 1995 00:14:20 -0600
  10. Organization: Creighton University, Omaha Nebraska USA
  11. Lines: 64
  12. Message-Id: <Pine.HPP.3.91.951030000148.24557B-100000@bluejay.creighton.edu>
  13. Nntp-Posting-Host: bluejay.creighton.edu
  14. Mime-Version: 1.0
  15. Content-Type: TEXT/PLAIN; charset=US-ASCII
  16. In-Reply-To: <1995Oct29.174729.65311@cc.usu.edu> 
  17. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18.  
  19. : > On the HP-UX end, the only thing I do is "kermit -i -x." On the OS/2 
  20. : > end, I have set packet size to 2048, window slots to 24, and 
  21. : > everything else is as-is. 
  22. : > 
  23. : > Is there any other things I can/should do? I tried to use MS-Kermit 
  24. : > (MS-DOS version). On that one, I couldn't even raise the packet length 
  25. : > beyond 371! Oh well...
  26. : ------------
  27. :     Your last paragraph contains a useful piece of information. A
  28. : packet length of 371 bytes is not the kind of number we normally choose
  29. : for packets, but it is the kind of number which arises when a packet is
  30. : dinged and the sending side shrinks them upon retries. That's the "rubber
  31. : packet" heuristic.
  32. :     In most cases of this kind our first response is "flow control,
  33. : flow control!" For best flow control use hardware RTS/CTS between your
  34. : machine and the modem, expect the modems to do their modem to modem
  35. : flow control under V.everything, and cross your fingers that your remote
  36. : host does snappy flow control with its modem too. Flow control must be
  37. : carried through from end to end, else traffic jams yield lost bytes.
  38.  
  39. Per someone else's suggestion, I typed these on the HP-UX kermit before 
  40. giving it the command "server" and begin downloading:
  41.  
  42. set file type binary
  43. set warning on
  44. set buffer 65536 65536
  45. set window 24
  46. set send packet 2048
  47. set block-check 2
  48. set flow none
  49. set flow rts
  50.  
  51. With OS/2 c-kermit, the transfer rate is around 1350cps. With MS-kermit, 
  52. the transfer rate is around 880cps. The effeciency is around 18%. There 
  53. are almost no retries. FYI, Y-modem G under same situation will do around 
  54. 1681cps with Hayes Smartcom (MS-DOS app) or halite that came with OS/2.
  55. I have set both OS/2 ck and MS-DOS kermit to rts/cts.
  56.  
  57. :     The second response is, maybe there is a terminal server or other
  58. : comms box between you and the host and it is unable to handle fast traffic
  59. : without dropping bytes. Terminal servers are often quite wierd boxes.
  60.  
  61. Yes, I did notice these are quite a weird beast. I can turn off the flow 
  62. control but then everything will go to hell (lotza retries under kermit 
  63. or z-modem -- y-modem g won't even work).
  64.  
  65. :     The third and usually last blind suggestion is ensure your OS/2
  66. : end has a decent serial port, typically a 16550A UART, so it does not 
  67. : drop bytes under load.
  68.  
  69. The machine has Hayes ESP, which is kinda like 16550A with extended 
  70. buffer size. The modem is Hayes Accura 14.4, which I think is also a 
  71. decent modem...
  72.  
  73. ------------- clip here with virtual scissors --------------
  74. ************************************************************
  75. Looking for roadkills... drop it by honge@creighton.edu...
  76. e-mails are welcome anytime -- but mails are not.
  77. Keyboard stuck failure. Press F1 to continue.
  78. Q: How many Mac users does it take to change a lightbulb?
  79. A: None -- there is no icon for that.
  80. ************************************************************
  81.  
  82.